home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / misc.save / 000023_fdc@panix.com_Mon Nov 20 11:26:14 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: reader2.panix.com!reader1.panix.com!panix!not-for-mail
  2. From: Frank da Cruz <fdc@panix.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: ringing
  5. Date: Mon, 20 Nov 2006 16:26:06 +0000 (UTC)
  6. Organization: PANIX Public Access Internet and UNIX, NYC
  7. Lines: 29
  8. Message-ID: <slrnem3lou.1ki.fdc@panix1.panix.com>
  9. References: <1163941555.189342.180010@b28g2000cwb.googlegroups.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: panix1.panix.com
  12. X-Trace: reader2.panix.com 1164039966 3307 166.84.1.1 (20 Nov 2006 16:26:06 GMT)
  13. X-Complaints-To: abuse@panix.com
  14. NNTP-Posting-Date: Mon, 20 Nov 2006 16:26:06 +0000 (UTC)
  15. User-Agent: slrn/0.9.8.0 (NetBSD)
  16. Xref: panix comp.protocols.kermit.misc:15593
  17.  
  18. On 2006-11-19, mortier <mortier@locean-ipsl.upmc.fr> wrote:
  19. : I'm a beginner as a kermit user so my question may be already answered
  20. : in the FAQ but I could find it.
  21. :
  22. : I use kermit to communicate with a sea robot by iridium phone. How to
  23. : make my terminal ringing (an audible ring lasting for while in order to
  24. : wake up a person) when the robot calls the terminal ?
  25. :
  26. So you have a Kermit script running on your computer, and this script
  27. contains an ANSWER command?
  28.  
  29. You could do something like this:
  30.  
  31.   set ask-timer 2
  32.   if success {
  33.       local x
  34.       set quiet on
  35.       echo YOU HAVE A CALL at \v(time).
  36.       echo Press any key to start session...
  37.       while true {
  38.       getc x \7\7\7\7\7\7\7\7\7\7
  39.       if success break
  40.       sleep 1
  41.       }
  42.   }
  43.   set ask-timer 0
  44.   connect
  45.  
  46. - Frank